* {
  box-sizing: border-box;
}

.grid-container {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  grid-template-areas: "header" "navigation" "main";
  margin: 0;
}

canvas {
  max-width: 100%;
}

.header {
  grid-area: header;
}

.trafficNav {
  grid-area: nav;
}

.main {
  grid-area: main;
}

.main {
  display: grid;
}

@media (min-width: 768px) {
  .gridContainer {
    grid-template-columns: 75px 1fr;
    grid-template-areas: "header header" "nav main";
    margin: 0;
    display: grid;
  }
  .main {
    grid-template-columns: 50%;
  }
  .trafficLineSection, .socialSection, .alert, .mainHeader {
    grid-column: 1/span 2;
  }
  .barSection, .doughnutSection, .messageSection {
    grid-column: 1/span 1;
  }
  .doughnutSection, .settingsSection {
    grid-column: 2/span 1;
  }
  .barSection {
    border-right: solid 0.1em rgb(169, 168, 168);
  }
  .doughnutSection {
    padding-left: 3%;
  }
  .activitySection, .membersSection, .messageSection, .settingsSection {
    grid-column: 1/span 2;
  }
}
@media (min-width: 1024px) {
  .activitySection, .membersSection, .settingsSection, .messageSection {
    grid-column: initial;
  }
}
header {
  display: flex;
  flex-direction: column;
}

.notificationHeader {
  background-color: #7477bf;
  display: flex;
  color: white;
  height: 5rem;
  width: 100%;
  padding-top: 1rem;
  padding-left: 0.5rem;
  justify-content: space-evenly;
}
.notificationHeader .notify {
  position: relative;
  width: 20%;
  height: 20%;
  margin-top: 5%;
}
@media (min-width: 768px) {
  .notificationHeader .notify {
    height: 23%;
    width: 18%;
    margin-top: 1.5%;
  }
  .notificationHeader .notify .notifyBell {
    position: absolute;
    top: -1px;
    left: 45px;
    width: 9%;
    height: 88%;
    background-color: #2ecc71;
    border-radius: 50%;
  }
  .notificationHeader .notify .bellIcon {
    height: 25px;
    width: 69px;
  }
}
.notificationHeader h1 {
  font-size: 1rem;
}
.notificationHeader h4 {
  font-size: 0.8rem;
}
.notificationHeader .profilePic {
  height: 39px;
  width: 75px;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.notificationHeader .bellIcon {
  height: 25px;
  width: 69px;
  border-radius: 50%;
}
.notificationHeader .bellIcon:hover {
  scale: 1.1;
}
.notificationHeader .notifyBell {
  position: absolute;
  top: 0vh;
  left: 13vw;
  width: 13%;
  height: 38%;
  background-color: #2ecc71;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .notificationHeader {
    justify-content: space-around;
    padding-top: 1%;
    height: 70px;
  }
  .notificationHeader h1 {
    margin-right: auto;
  }
  .notificationHeader h4 {
    margin-left: 2%;
    padding-right: 2%;
  }
  .notificationHeader .bellIcon {
    height: 43%;
    width: 3%;
    border-radius: 50%;
  }
}

nav {
  background-color: #4c50c3;
  color: white;
  height: 5rem;
}
@media (min-width: 768px) {
  nav {
    height: 100%;
    top: 22%;
    left: 8px;
    width: 45px;
    display: flex;
  }
}

nav ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0.8% 25% 0.5%;
  justify-content: space-between;
}
@media (min-width: 768px) {
  nav ul {
    flex-direction: column;
    justify-content: normal;
  }
}
nav ul li {
  list-style: none;
  margin-bottom: 3em;
  padding-top: 1em;
}
nav ul img {
  height: 30px;
  width: 25px;
}

.mainHeader {
  display: flex;
  flex-direction: row;
}

.dashboardSearch {
  width: 100%;
  background-color: rgb(223, 223, 223);
  border-left: solid 0.1em rgb(169, 168, 168);
  border-bottom: solid 0.1em rgb(169, 168, 168);
  margin-left: 2%;
}

.alert {
  width: 100%;
  background-color: #4c50c3;
  border-radius: 15px;
  padding: 1%;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  height: 50px;
  font-size: small;
}
@media (min-width: 768px) {
  .alert {
    width: 90%;
  }
}
.alert p {
  display: inline-block;
}

.alertBanner {
  display: flex;
  justify-content: space-between;
  width: 98%;
}

.alertBannerClose {
  font-weight: bold;
  cursor: pointer;
}

.trafficLineSection {
  border-bottom: solid 0.1em rgb(169, 168, 168);
}

.trafficNav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.trafficNav li {
  list-style: none;
  font-weight: bold;
}

.barSection {
  border-bottom: solid 0.1em rgb(169, 168, 168);
}

.doughnutSection {
  border-bottom: solid 0.1em rgb(169, 168, 168);
}

.socialSection {
  border-bottom: solid 0.1em rgb(169, 168, 168);
  padding-left: 1%;
}
@media (min-width: 768px) {
  .socialSection .cardWrapper {
    display: flex;
  }
}

.cardContainer {
  display: flex;
  align-items: center;
  background-color: rgb(223, 223, 223);
  padding: 1rem 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5%;
}
@media (min-width: 768px) {
  .cardContainer {
    width: 32%;
  }
}

.socialImage {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7477bf;
  border-radius: 100%;
  width: 77px;
  height: 78px;
}
@media (min-width: 768px) {
  .socialImage {
    width: 70px;
    height: 68px;
  }
}

.socialText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.socialName {
  text-transform: capitalize;
  margin-top: 0;
  margin-left: 1.1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #7477bf;
}

.socialDescription {
  text-transform: capitalize;
  margin-top: 0;
  margin-left: 1.1rem;
  font-size: 2.1rem;
  font-weight: lighter;
  color: rgb(58, 57, 57);
}

.activitySection, .membersSection {
  background-color: ghostwhite;
}
.activitySection h3, .membersSection h3 {
  padding-left: 2%;
}

.membersSection {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .membersSection {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1024px) {
  .membersSection {
    display: grid; /* Display activityCard items in a grid */
    grid-template-columns: 1fr; /* Two equal-sized columns */
    gap: 10px; /* Gap between grid items */
    border-right: solid 0.1em rgb(169, 168, 168);
    border-bottom: solid 0.1em rgb(169, 168, 168);
    padding-right: 1%;
  }
}

.memberCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2%;
  border-bottom: solid 0.1em rgb(169, 168, 168);
}
@media (min-width: 768px) {
  .memberCard {
    flex-direction: row;
    margin-right: 0;
    height: 30%;
    padding-bottom: 3%;
  }
  .memberCard img {
    padding-right: 2%;
  }
}
@media (min-width: 768px) {
  .memberCard > p {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .memberCard {
    height: 9.5rem;
  }
}

.activitySection {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1024px) {
  .activitySection {
    display: grid; /* Display activityCard items in a grid */
    grid-template-columns: 1fr; /* Two equal-sized columns */
    gap: 10px; /* Gap between grid items */
    border-bottom: solid 0.1em rgb(169, 168, 168);
  }
}

.activityCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2%;
  border-bottom: solid 0.1em rgb(169, 168, 168);
}
@media (min-width: 768px) {
  .activityCard {
    flex-direction: row;
    width: auto;
    padding-bottom: 2%;
  }
}
@media (min-width: 1024px) {
  .activityCard {
    height: 9.5rem;
  }
}
@media (min-width: 1024px) {
  .activityCard .memberText {
    width: 300px;
  }
}

img, .memberText p, .memberText span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2%;
}
@media (min-width: 768px) {
  img, .memberText p, .memberText span {
    display: block;
  }
}
@media (min-width: 1024px) {
  img, .memberText p, .memberText span {
    padding-right: 0;
  }
}

img {
  border-radius: 50%;
}

.memberText span {
  font-weight: bold;
}

@media (min-width: 768px) {
  .memberText {
    margin-left: 4%;
  }
}

.widgetContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2%;
}

.messageSection {
  border-bottom: solid 0.1em rgb(169, 168, 168);
  padding-bottom: 4%;
}
@media (min-width: 1024px) {
  .messageSection {
    display: grid; /* Display activityCard items in a grid */
    grid-template-columns: 1fr; /* Two equal-sized columns */
    gap: 10px; /* Gap between grid items */
  }
}

input {
  border-radius: 4%;
  width: 86%;
  height: 3.5em;
  background-color: rgb(223, 223, 223);
  margin-bottom: 2%;
}

textarea {
  background-color: rgb(223, 223, 223);
  margin: 0 auto;
  width: 86%;
  height: 7em;
  margin-bottom: 2%;
  border-radius: 4%;
}

.buttonPrimary {
  margin: 0 auto;
  background-color: #7477bf;
  width: 86%;
  border-radius: 4%;
  height: 4em;
}

@media (min-width: 1024px) {
  .settingsSection {
    display: grid; /* Display activityCard items in a grid */
    grid-template-columns: 1fr; /* Two equal-sized columns */
    gap: 10px; /* Gap between grid items */
    border-left: solid 0.1em rgb(169, 168, 168);
    padding-left: 2%;
  }
}

.settings {
  grid-area: settings;
  border-bottom: none;
}

.toggles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}
@media (min-width: 1024px) {
  .toggles {
    padding-right: 45%;
  }
}

.toggles h3 {
  margin: 0;
  text-transform: capitalize;
}

.timezones {
  background-color: #fafafa;
  border: 1px solid lightgray;
  border-radius: 5px;
  font-size: 0.9rem;
  height: auto;
  width: 86%;
  outline: 0;
  margin: 10px;
  padding: 1rem 5px;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
}

option {
  font-size: 0.9rem;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0;
}

.settings-save,
.settings-cancel {
  width: 100%;
  padding: 1rem 5px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  border-radius: 5px;
}

.settings-save {
  background-color: #7477bf;
  margin-right: 10px;
}

.settings-cancel {
  background-color: #ccc;
  margin-left: 10px;
}

/* The slider box */
.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 36px;
}
@media (min-width: 1024px) {
  .switch {
    margin-left: 10px;
  }
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider button */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 5px;
  bottom: 5px;
  background-color: white;
  transition: 0.2s;
}

input:checked + .slider {
  background-color: #7477bf;
}

input:focus + .slider {
  box-shadow: 0 0 3px #ccc;
}

input:checked + .slider:before {
  transform: translateX(34px);
}

.slider:after {
  content: "OFF";
  color: white;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 75%;
  font-size: 0.8rem;
  font-weight: bold;
}

input:checked + .slider:after {
  content: "ON";
  left: 25%;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.canvasLineChart, .canvasBarChart, .canvasDoughnutChart {
  padding-bottom: 4%;
  position: relative;
}/*# sourceMappingURL=styles.css.map */